home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Development / General / WASTE 1.0a4 Distribution / Demo Source / WEDemoMain.p < prev    next >
Text File  |  1994-01-04  |  359b  |  27 lines

  1. program WASTEDemo;
  2.  
  3. { WASTE DEMO PROJECT: }
  4. { Main Program }
  5.  
  6. { Copyright © 1993-1994 Merzwaren }
  7. { All Rights Reserved }
  8.  
  9.     uses
  10.         DemoEvents, DemoInit;
  11.  
  12. { THINK Pascal compiler directive: turn off automatic initialization }
  13.  
  14. {$IFC THINK_PASCAL}
  15. {$I-}
  16. {$ENDC}
  17.  
  18. begin
  19.  
  20.     if (Initialize = noErr) then
  21.         repeat
  22.             ProcessEvent;
  23.         until gExiting;
  24.  
  25.     Finalize;
  26.  
  27. end.